// ITI1120 another buggy program

// The bug here is a very simple and common mistake.

class Prog3
{
    public static void main (String[] args)
    {
        // code for the main method
        
        System.out.println("ITI1120, first example program")
        System.out.println("*** ITI1120 is GREAT ***") ;
    }

}

